home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 22 code / Futures / FutureShock / EventHandler.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-27  |  431 b   |  23 lines  |  [TEXT/MMCC]

  1. #ifndef __EVENTHANDLER__
  2. #define __EVENTHANDLER__
  3.  
  4. /*
  5. // Globals defined in this file:
  6. */
  7. extern Boolean            gIbeamFlashOn;
  8. extern long                gIbeamTick;
  9.  
  10. /*
  11. // Prototypes from 'EventHandler.c'
  12. */
  13. void                    HandleEvents( RgnHandle mouseRegion );
  14.  
  15. /*
  16. // Call 'SetDoingImportantWork(true)' when starting some
  17. // task that is independant of 
  18. */
  19. Boolean                    DoingImportantWork();
  20. void                    SetDoingImportantWork(Boolean isImportant);
  21.  
  22. #endif
  23.